home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / C048.ZIP / XLISPLSP.ZIP / TAK.LSP < prev   
Lisp/Scheme  |  1988-02-12  |  177b  |  10 lines

  1. (defun tak (x y z)
  2.   (if (not (< y x))
  3.       z
  4.       (tak (tak (1- x) y z)
  5.            (tak (1- y) z x)
  6.            (tak (1- z) x y))))
  7.  
  8. (defun dotak ()
  9.   (tak 18 12 6))
  10.